import java.util.*;  
class Boolean {    
    public static void main(String[] args) {         
           System.out.print("Are you above 18?- ");  
           Scanner sc = new Scanner(System.in);  
           boolean bn = sc.nextBoolean();  
           if (bn == true) {  
               System.out.println("You are above 18");  
           } else if (bn == false) {  
               System.out.println("You are under 18");  
           }  
           sc.close();                      
     }  
}  